*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    width: 100%;
    line-height: 1.4;
    background-image: url("C:/Users/a.robinson450/Desktop/WebDesignStuff/landingPage/images/relabelling-e1600789351996.jpg");
    /*background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));*/
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
}

/* container */
/* center elements on screen */
#container{
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

h1#title{
    color: #860a0a;
    font-size: 4rem;
}

p#subbanner{
    color: #06b92d;
    letter-spacing: 1px;
    margin: 1rem 0;
    font-size: 2.5rem;
    font-weight: bold;
}

form{
    width: 50%;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*for portrait tablets*/
@media(min-width:768px)(max-width:899px){}

/*for landscape tablets*/
@media(min-width:900px)(max-width:1023px){}

/*for smaller phones (e.g., 320px - 480px)*/
@media(max-width:480px){}

/* for larger phones and tablets (e.g., 481px - 767px)*/
@media(min-width:481px)(max-width:767px){}
